aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/websites/[websiteId]/cohorts/page.tsx
blob: 9946f60266898927511ac7b2504de96adfe93bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import type { Metadata } from 'next';
import { CohortsPage } from './CohortsPage';

export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
  const { websiteId } = await params;

  return <CohortsPage websiteId={websiteId} />;
}

export const metadata: Metadata = {
  title: 'Cohorts',
};